-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Integration] Integration enhancements #1860
[Integration] Integration enhancements #1860
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just noticed that, for the catalog repo, it is using amazon as the name branding for waf and cloudtrail. Based on the previous conversation we had here: #1494, we should keep the AWS branding. I also made a change in catalog repo: opensearch-project/opensearch-catalog#154.
cc: @Swiddis , @YANG-DB .
server/adaptors/integrations/__data__/repository/aws_waf/aws_waf-1.1.0.json
Outdated
Show resolved
Hide resolved
server/adaptors/integrations/__data__/repository/aws_cloudtrail/aws_cloudtrail-1.1.0.json
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,52 @@ | |||
{ | |||
"name": "apache", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed the issue of
Property keys must be doublequoted json(528)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -0,0 +1,56 @@ | |||
{ | |||
"name": "nginx", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same fix for Nginx
.
server/adaptors/integrations/__data__/repository/amazon_elb/amazon_elb-1.1.0.json
Outdated
Show resolved
Hide resolved
...rs/integrations/__data__/repository/amazon_vpc_flow/assets/create_table_vpc_schema-1.0.0.sql
Outdated
Show resolved
Hide resolved
server/adaptors/integrations/__data__/repository/apache/apache-1.1.0.json
Outdated
Show resolved
Hide resolved
server/adaptors/integrations/__data__/repository/nginx/nginx-1.0.0.json
Outdated
Show resolved
Hide resolved
While we're at it: some of the failures in Link Checker are due to integrations, we could stand to fix those. https://github.com/opensearch-project/dashboards-observability/actions/runs/9327199028/job/25676769475?pr=1860 |
Signed-off-by: Ryan Liang <jiallian@amazon.com>
Signed-off-by: Ryan Liang <jiallian@amazon.com>
… for apache and nginx Signed-off-by: Ryan Liang <jiallian@amazon.com>
Signed-off-by: Ryan Liang <jiallian@amazon.com>
a025510
to
2080de8
Compare
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/dashboards-observability/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/dashboards-observability/backport-2.x
# Create a new branch
git switch --create backport/backport-1860-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1944d0b7de350de01b31c894868ab05165ad25bc
# Push it to GitHub
git push --set-upstream origin backport/backport-1860-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/dashboards-observability/backport-2.x Then, create a pull request where the |
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/dashboards-observability/backport-2.13 2.13
# Navigate to the new working tree
pushd ../.worktrees/dashboards-observability/backport-2.13
# Create a new branch
git switch --create backport/backport-1860-to-2.13
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1944d0b7de350de01b31c894868ab05165ad25bc
# Push it to GitHub
git push --set-upstream origin backport/backport-1860-to-2.13
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/dashboards-observability/backport-2.13 Then, create a pull request where the |
manual backports will be added |
* Add recursive file lookup for all table creation queries Signed-off-by: Ryan Liang <jiallian@amazon.com> * Change the versions and source urls Signed-off-by: Ryan Liang <jiallian@amazon.com> * Change the source url to release of catalog repo, and fix the formats for apache and nginx Signed-off-by: Ryan Liang <jiallian@amazon.com> * Reverted some version changes on integrations with only doc link changes Signed-off-by: Ryan Liang <jiallian@amazon.com> --------- Signed-off-by: Ryan Liang <jiallian@amazon.com>
Description
sourceURL
to catalog repo's releasesApache
andNginx
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.